사이트 내 전체검색
[javascript] 상태선에서 글씨가 깜박임효과
로빈아빠
https://cmd.kr/javascript/488 URL이 복사되었습니다.

본문

<html>
<head><title>가자! 자바의 세상으로/상태선에서 글씨가 깜박입니다</title>

<script language="JavaScript">
<!--
var yourwords = "희망이란, 찾아 나선 사람에게만 나타나는 별빛이다.....";
var speed = 150;
var control = 1;
function flash()
{
  if (control == 1)
    {
      window.status=yourwords;
      control=0;
    } 
  else
    {
      window.status="";
      control=1;
    }
  setTimeout("flash();",speed);
}
// -->
</script>
</head>

<body bgcolor=#000080 onload="flash();">
<div align="senter">
<table border=1 bordercolor=red cellpadding="0" cellspacing="0" width=550 height=50>
<tbody>
<tr>
    <br><br><br><br><br><br>
    <td><p align="center"><font color=ffffff size=3>상태선 부분에 글씨가 깜빡이고 있습니다.</font>
    </td></tr>
</tbody></table></div>
</body>
</html>
 
 
[이 게시물은 VIRHAC님에 의해 2009-09-13 14:38:24 HTML에서 이동 됨]

댓글목록

등록된 댓글이 없습니다.

831 (7/17P)

Search

Copyright © Cmd 명령어 3.143.214.56